home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 4: GNU Archives
/
Linux Cubed Series 4 - GNU Archives.iso
/
gnu
/
graphics.17
/
graphics
/
graphics-0.17
/
tek2plot
/
ts.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-03-12
|
422 b
|
34 lines
#include "sys-defines.h"
#include "plot3.h"
int
main (argc, argv)
int argc;
char *argv[];
{
int x,y,r;
openpl();
erase ();
fill (0xFFFF);
move (20,20);
cont (20,700);
cont (700,700);
cont (700,20);
cont (20,20);
move (100,100);
fill (0);
label ("hi there ");
label ("xxxxxxxx");
circle (300,300,200);
x=200; y=300; r=40;
arc (x,y,x,y+r,x-r,y);
closepl();
return 0;
}